home *** CD-ROM | disk | FTP | other *** search
/ PC Zone 96 / PC Zone #096.7z / Dppcz1200.mdf / Demos / Gunlok / data1.cab / Program_Executable_Files / scripts / stalker_frag.gsh < prev    next >
Text File  |  2000-09-09  |  1KB  |  41 lines

  1. // defines the fragmented Stalker bot
  2. ////////////////////////////////////////////////////////////////////////////////////
  3.  
  4. // start wrapper - prevent multiple inclusions or recursive inclusions
  5.  
  6. //(this currently causes 'unrecognized preprocessor directive' warnings, until implemented)
  7. #ifndef INCLUDED_STALKER_FRAG_GSH
  8. #define INCLUDED_STALKER_FRAG_GSH
  9.  
  10. ////////////////////////////////////////////////////////////////////////////////////
  11.  
  12. #include "defaults.gsh"
  13.  
  14. hierarchy Hcy_StalkerFrag
  15. {
  16.     file    "units\stalkfrag.rif"
  17.     name    "stalkfrag"
  18.     hotspot none
  19. }
  20.  
  21. role Rol_StalkerFrag : Rol_PlacedObject
  22. {
  23.     shape            Hcy_StalkerFrag
  24.     identifier        "stalkfrag"
  25.     frag control    yes
  26.     hit test ignore    yes
  27. }
  28.  
  29. frag data Frg_Stalker
  30. {
  31.     role Rol_StalkerFrag
  32.     scale 5
  33.     replace no
  34.     remove "abdomen"
  35. }
  36.  
  37. ////////////////////////////////////////////////////////////////////////////////////
  38.  
  39. // end wrapper - for preventing multiple or recursive inclusions
  40. #endif // !INCLUDED_STALKER_FRAG_GSH
  41.